home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / vim-4.2 / src / config.mk.in < prev    next >
Text File  |  1996-05-29  |  1KB  |  50 lines

  1. #
  2. # config.mk.in -- autoconf template for Vim on Unix        vim:ts=8:sw=8:
  3. #
  4. # DO NOT EDIT config.mk!! Do not edit config.mk.in!! Edit Makefile and run
  5. # configure again. config.mk will be overwritten by configure. 
  6. #
  7. # Configure does not edit the makefile directly. This method is not the 
  8. # standard use of GNU autoconf, but it has two advantages:
  9. #   a) The user can override every choice made by configure.
  10. #   b) Modifications to the makefile are not lost when configure is run.
  11. #
  12. # I hope this is worth being nonstandard. jw.
  13.  
  14. @SET_MAKE@
  15. CC = @CC@
  16. DEFS = @DEFS@
  17. CFLAGS = @CFLAGS@
  18. srcdir = @srcdir@
  19. VPATH = @srcdir@
  20. LDFLAGS = @LDFLAGS@
  21. LIBS = @LIBS@
  22. CTAGS = @CTAGS@
  23.  
  24. CPP = @CPP@
  25. CPP_MM = @CPP_MM@
  26. X_CFLAGS = @X_CFLAGS@
  27. X_LIBS_DIR = @X_LIBS@
  28. X_PRE_LIBS = @X_PRE_LIBS@
  29. X_EXTRA_LIBS = @X_EXTRA_LIBS@
  30. X_LIBS = @X_LIB@
  31.  
  32. ### Prefix for location of files
  33. PREFIX = @prefix@
  34. # to fix a bug in autoconf, also do this:
  35. prefix = @prefix@
  36.  
  37. ### Location of binary
  38. EXEC_PREFIX = @exec_prefix@
  39.  
  40. ### Location for help files
  41. HELPDIR = @HELPDIR@
  42.  
  43. ### Do we have a GUI
  44. GUI_INC_LOC = @GUI_INC_LOC@
  45. GUI_LIB_LOC = @GUI_LIB_LOC@
  46. MOTIF_COMMENT = @MOTIF_COMMENT@
  47. ATHENA_COMMENT = @ATHENA_COMMENT@
  48. NARROW_PROTO = @NARROW_PROTO@
  49. GUI_X_LIBS = @GUI_X_LIBS@
  50.